home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / ifont.h < prev    next >
C/C++ Source or Header  |  1997-07-08  |  3KB  |  83 lines

  1. /* Copyright (C) 1989, 1991, 1993, 1994, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* ifont.h */
  20. /* Interpreter internal font representation */
  21.  
  22. #include "gsccode.h"        /* for gs_glyph */
  23. #include "gsstruct.h"        /* for extern_st */
  24.  
  25. /* The external definition of fonts is given in the PostScript manual, */
  26. /* pp. 91-93. */
  27.  
  28. /* The structure given below is 'client data' from the viewpoint */
  29. /* of the library.  font-type objects (t_struct/st_font, "t_fontID") */
  30. /* point directly to a gs_font.  */
  31.  
  32. typedef struct font_data_s {
  33.     ref dict;            /* font dictionary object */
  34.     ref BuildChar;
  35.     ref BuildGlyph;
  36.     ref Encoding;
  37.     ref CharStrings;
  38.     union _fs {
  39.       struct _f1 {
  40.         ref OtherSubrs;        /* from Private dictionary */
  41.         ref Subrs;            /* from Private dictionary */
  42.         ref GlobalSubrs;        /* from Private dictionary, */
  43.                     /* for Type 2 charstrings */
  44.       } type1;
  45.       struct _f42 {
  46.         ref sfnts;
  47.       } type42;
  48.     } u;
  49. } font_data;
  50. /*
  51.  * Even though the interpreter's part of the font data actually
  52.  * consists of refs, allocating it as refs tends to create sandbars;
  53.  * since it is always allocated and freed as a unit, we can treat it
  54.  * as an ordinary structure.
  55.  */
  56. /* st_font_data is exported for zdefault_make_font in zfont.c. */
  57. extern_st(st_font_data);
  58. #define public_st_font_data()    /* in zfont2.c */\
  59.   gs_public_st_ref_struct(st_font_data, font_data, "font_data")
  60. #define pfont_data(pfont) ((font_data *)((pfont)->client_data))
  61. #define pfont_dict(pfont) (&pfont_data(pfont)->dict)
  62.  
  63. /* Registered encodings, for the benefit of platform fonts, `seac', */
  64. /* and compiled font initialization. */
  65. /* This is a t_array ref that points to the encodings. */
  66. #define registered_Encodings_countof 5
  67. extern ref registered_Encodings;
  68. #define registered_Encoding(i) (registered_Encodings.value.refs[i])
  69. #define StandardEncoding registered_Encoding(0)
  70.  
  71. /* Internal procedures shared between modules */
  72.  
  73. /* In zchar.c */
  74. int font_bbox_param(P2(const ref *pfdict, double bbox[4]));
  75.  
  76. /* In zfont.c */
  77. #ifndef gs_font_DEFINED
  78. #  define gs_font_DEFINED
  79. typedef struct gs_font_s gs_font;
  80. #endif
  81. int font_param(P2(const ref *pfdict, gs_font **ppfont));
  82. bool zfont_mark_glyph_name(P2(gs_glyph glyph, void *ignore_data));
  83.